-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Fix mobile build and test failures in extra-platforms pipeline #124000
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix mobile build and test failures in extra-platforms pipeline #124000
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR fixes a broken target dependency in the Apple mobile jobs that was introduced by PR #123110. That PR removed the PrepareMergedTestPayloadDirectories target and inlined its content into the PreparePayloadDirectories target, but left a reference to the old target name in the ZipMergedPayloadDirectory target.
Changes:
- Updated
ZipMergedPayloadDirectorytarget'sAfterTargetsdependency from the removedPrepareMergedTestPayloadDirectoriesto the existingPreparePayloadDirectoriestarget
|
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
|
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.
|
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
|
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
src/coreclr/tools/Common/Compiler/ObjectWriter/MachObjectWriter.cs
Outdated
Show resolved
Hide resolved
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
Extra platforms run with fixed tests: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
|
Tagging subscribers to this area: @dotnet/runtime-infrastructure |
Description
This PR fixes several failures encountered in extra-platforms pipeline:
ZipMergedPayloadDirectorytarget to usePreparePayloadDirectoriesinstead ofPrepareMergedTestPayloadDirectories, which was inlined in Remove legacy XUnitWrapper test tree infrastructure #123110. This should fix Apple mobile runtime testsNative AOT builds will be fixed in #124083